home *** CD-ROM | disk | FTP | other *** search
/ U.S. Robotics Connections 2 / US Robotics Connections.iso / pc / sourcepc / palmpc.dir / 00217.ls < prev    next >
Encoding:
Text File  |  1996-03-01  |  515 b   |  23 lines

  1. on mouseDown
  2.   global gCalNum, gSetNum, gLastNum, gOperation, gAnswer
  3.   if gAnswer = 1 then
  4.     set gSetNum to 0
  5.     set gCalNum to 0
  6.     set gAnswer to 0
  7.   end if
  8.   if the number of chars in string(gCalNum) >= 9 then
  9.     exit
  10.   end if
  11.   if string(gCalNum) contains "." then
  12.     exit
  13.   end if
  14.   set lNum to "."
  15.   set lText to EMPTY
  16.   repeat with i = 1 to the number of chars in string(gCalNum)
  17.     put char i of string(gCalNum) after lText
  18.   end repeat
  19.   put lNum after lText
  20.   set gCalNum to lText
  21.   DrawNum()
  22. end
  23.